home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / setregid.c < prev    next >
C/C++ Source or Header  |  1988-11-17  |  2KB  |  80 lines

  1. /* 
  2.  * setregid.c --
  3.  *
  4.  *    Source code for the setregid library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/setregid.c,v 1.1 88/11/17 13:30:50 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <proc.h>
  22. #include "compatInt.h"
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * setregid --
  28.  *
  29.  *    Procedure to map from Unix setregid system call to Sprite Proc_SetIDs.
  30.  *    Sprite doesn't have the notion of real and effective groud IDs;
  31.  *    instead, both gid arguments become the set of Sprite group IDs for
  32.  *    current process.
  33.  *
  34.  * Results:
  35.  *      UNIX_SUCCESS    - the call was successful.
  36.  *      UNIX_ERROR      - the call was not successful.
  37.  *                        The actual error code stored in errno.
  38.  *
  39.  * Side effects:
  40.  *    The previous group IDs are deleted.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. int
  46. setregid(rgid, egid)
  47.     int    rgid, egid;
  48. {
  49.     ReturnStatus status = SUCCESS;
  50.     int array[2];
  51.     int num = 0;
  52.  
  53.     /*
  54.      * Make the rgid and egid the group IDs for the process. If a gid is
  55.      * -1, it is ignored.
  56.      */
  57.  
  58.     if (rgid != -1) {
  59.     array[0] = rgid;
  60.     num = 1;
  61.     if (egid != rgid && egid != -1) {
  62.         array[1] = egid;
  63.         num++;
  64.     }
  65.     } else if (egid != -1) {
  66.     array[0] = egid;
  67.     num++;
  68.     }
  69.     if (num > 0) {
  70.     status = Proc_SetGroupIDs(num, array);
  71.     }
  72.  
  73.     if (status != SUCCESS) {
  74.     errno = Compat_MapCode(status);
  75.     return(UNIX_ERROR);
  76.     } else {
  77.     return(UNIX_SUCCESS);
  78.     }
  79. }
  80.